import React from 'react'; declare type IInputContainer = { className?: string; placeholder?: string; keyEnter?: (value: string) => void; children?: JSX.Element | null | boolean; height?: number; onFocus?: () => void; onBlur?: () => void; onChange?: (e: React.ChangeEvent) => void; }; declare type OptionContainer = { className?: string; children: JSX.Element | JSX.Element[]; height?: number | string; }; export declare function Chip(): JSX.Element; export declare function Total({ text }: { text?: (count: number) => string; }): JSX.Element; export declare const InputContainer: (props: IInputContainer) => JSX.Element; export declare function Options({ className, children, height }: OptionContainer): JSX.Element; export {};