import React from "react"; type Props = { disabled?: boolean; inputSize?: string; children?: React.ReactNode; }; declare const Container: ({ children, disabled, inputSize }: Props) => React.JSX.Element; export default Container; //# sourceMappingURL=Container.d.ts.map