import { ReactNode } from "react"; interface SelectChildrenWithDefaultStatusProps { isLoading: boolean | undefined; inputValue: string | undefined; children: ReactNode; } export declare const SelectChildrenWithDefaultStatus: ({ isLoading, inputValue, children, }: SelectChildrenWithDefaultStatusProps) => JSX.Element; export {};