export interface TipProps { /** The content inside the tip */ text: string; } declare const Tip: (props: TipProps) => JSX.Element; export default Tip;