import React from 'react'; interface Props { children: React.ReactNode; className?: string; type?: 'error' | 'info' | 'warning'; } declare function InfoForInput({ children, className, type }: Props): React.ReactElement; declare const _default: import("styled-components").StyledComponent; export default _default;