export interface SupportTextContainerProps { errorMessage?: string; supportMessage?: string; currentLength?: number; maxLength?: number; currentFileSize?: number; maxFileSize?: number; } declare const SupportTextContainer: ({ errorMessage, supportMessage, currentLength, maxLength, currentFileSize, maxFileSize, }: SupportTextContainerProps) => import("react/jsx-runtime").JSX.Element; export { SupportTextContainer };