/// interface Props { /** * The text shown on the button */ buttonText?: string; /** * The text shown on the button when all is shown */ lessButtonText?: string; /** * Style of the button */ buttonTheme?: string; /** * the value to show in the div */ children: string; /** * How many characters until the read more link shows */ threshold?: number; /** * Style of the children */ theme?: string; } declare const SeeMore: ({ buttonText, lessButtonText, buttonTheme, children, theme, threshold, }: Props) => JSX.Element; export default SeeMore;