import { ButtonProps as RaButtonProps } from 'react-admin'; import { Path } from 'react-router'; type ButtonProps = RaButtonProps & { /** * Disable icon only in small screens. */ disableIconOnly?: boolean; }; /** * A button that can be displayed as a floating button on small screens. * @param props The component props. * @returns The component. */ declare function Button(props: ButtonProps): JSX.Element; type LocationDescriptor = Partial & { redirect?: boolean; state?: any; replace?: boolean; }; export { Button }; export type { ButtonProps, LocationDescriptor }; //# sourceMappingURL=Button.d.ts.map