import * as React from 'react'; type Props = { children: React.ReactNode; className?: string; withFullOpacity?: boolean; }; export declare function Caption({ children, className, withFullOpacity }: Props): React.JSX.Element; export {};