import React from 'react'; export type MdTileProps = { heading?: string; description?: string; href?: string; theme?: 'primary' | 'secondary'; fullWidth?: boolean; disabled?: boolean; mode?: 'large' | 'medium' | 'small'; icon?: React.ReactNode; preventDefault?: boolean; loading?: boolean; asChild?: boolean; asChildContent?: React.ReactNode; onClick?(_e: React.MouseEvent): void; } & React.AnchorHTMLAttributes & React.ButtonHTMLAttributes; export declare const MdTile: React.FC; export default MdTile;