import { ToReact } from './helpers.types'; import { ZTile } from '../tile'; export type ZrTile_Props = ToReact<'Tile'>; type ZrTile_Type = React.ForwardRefExoticComponent & { ref?: React.ForwardedRef; } & { Content: typeof Content; Header: typeof Header; Actions: typeof Actions; }; declare const Content: import('react').FC; declare const Header: import('react').FC; declare const Actions: import('react').FC; /** ### `` * (_for ⚛ React_) * */ declare const Namespace: ZrTile_Type; export { Namespace as ZrTile };