import { FC } from 'react'; import { ButtonProps } from '../button'; import { MetaDataQuery } from '../../../interfaces'; declare type RefreshButtonProps = ButtonProps & { resourceName?: string; recordItemId?: string; hideText?: boolean; metaData?: MetaDataQuery; }; export declare const RefreshButton: FC; export {};