interface Props { maxHeight: string; } declare const defaultProps: Props; declare const generateTemplate: () => string; declare const generateStyle: (props: Props) => string; export { defaultProps, generateStyle, generateTemplate, Props };