import * as React from 'react'; export interface Props { /** * Component's HTML Element * * @default 'div' */ component?: string | React.ComponentType; /** * Makes block footer inset, overwrites `insetIos` and `insetMaterial` * * @default undefined */ inset?: boolean; /** * Makes block footer inset in iOS theme * * @default false */ insetIos?: boolean; /** * Makes block footer inset in Material theme * * @default false */ insetMaterial?: boolean; /** * Object with Tailwind CSS colors classes * */ colors?: { /** * * @default 'text-black/60 dark:text-white/60' */ textIos?: string; /** * * @default 'text-md-light-on-surface-variant dark:text-md-dark-on-surface-variant' */ textMaterial?: string; }; } // @ts-ignore interface BlockFooterProps extends Omit, keyof Props>, Props { ref?: React.Ref; } declare const BlockFooter: React.ComponentType; export default BlockFooter;