export type FolderCardProps = {
    isSelected?: boolean;
    onSelect?: () => void;
    title: string;
    subtitle?: string;
    width?: string;
    onClick?: () => void;
    iconSize?: string;
    hasNoButtonOnFocus?: boolean;
};
declare const FolderCard: React.FunctionComponent<FolderCardProps>;
export default FolderCard;
