import { type FunctionalComponent as FC } from '../../stencil-public-runtime';
import type { JSXBase } from '../../stencil-public-runtime';
export type CustomSuggestionsToggleProps = JSXBase.HTMLAttributes<HTMLButtonElement> & {
    disabled?: boolean;
};
declare const CustomSuggestionsToggleFc: FC<CustomSuggestionsToggleProps>;
export default CustomSuggestionsToggleFc;
