import React from 'react'; import type { MouseEvent, CSSProperties } from 'react'; import type { IFabProps } from '@/core/data-display/fab'; export interface IProps extends IFabProps { mini?: boolean; className?: string; name?: string; tooltip?: string; padding?: string | number; margin?: string | number; style?: CSSProperties; disabled?: boolean; children: JSX.Element; onClick(event: MouseEvent): void; } declare const FabV2: (props: IProps) => React.JSX.Element; export default FabV2;