Circle V2 API Docs
    Preparing search index...
    CommandPaletteProps: Omit<CommandPaletteDialogProps, "children"> & {
        children: ReactNode;
        inputProps?: Omit<
            CommandPaletteInputProps,
            "placeholder"
            | "value"
            | "onValueChange",
        >;
        listRef?: RefObject<HTMLDivElement | null>;
        onSearchChange?: (value: string) => void;
        placeholder?: string;
        rootProps?: Omit<CommandPaletteRootProps, "shouldFilter" | "children">;
        search?: string;
        shouldFilter?: boolean;
    }