import { FC } from 'react'; import { ButtonProps } from '../button'; declare type ListButtonProps = ButtonProps & { resourceName?: string; hideText?: boolean; ignoreAccessControlProvider?: boolean; }; export declare const ListButton: FC; export {};