import React from 'react'; import { TdFabProps } from './type'; import { StyledProps } from '../common'; export interface FabProps extends TdFabProps, StyledProps { children?: React.ReactNode; } declare const Fab: React.FC; export default Fab;