import React from 'react'; export interface MoreButtonLayoutProps { color?: string; border?: string; fontSize?: number; variant?: string; width?: string; } interface MoreButtonProps extends MoreButtonLayoutProps { more?: boolean; more_title: string; more_link: string; } declare const MoreButton: { ({ more, color, border, fontSize, more_link, more_title, variant, width, }: MoreButtonProps): React.JSX.Element; defaultProps: { color: string; border: string; fontSize: number; variant: string; width: string; }; }; export default MoreButton;