import { ToReact } from './helpers.types'; import { ZButton } from '../button'; export type ZrButton_Props = ToReact<'Button'>; type ZrButton_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; }; declare const Content: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrButton_Type; export { Namespace as ZrButton };