import type { CollectionSlug } from 'payload'; import React from 'react'; export declare function ListCreateNewDocInFolderButton({ buttonLabel, buttonSize, buttonStyle, collectionSlugs, folderAssignedCollections, onCreateSuccess, slugPrefix, }: { buttonLabel: string; buttonSize?: 'large' | 'medium' | 'small' | 'xsmall'; buttonStyle?: 'error' | 'icon-label' | 'none' | 'pill' | 'primary' | 'secondary' | 'subtle' | 'tab' | 'transparent'; collectionSlugs: CollectionSlug[]; folderAssignedCollections: CollectionSlug[]; onCreateSuccess: (args: { collectionSlug: CollectionSlug; doc: Record; }) => Promise | void; slugPrefix: string; }): React.JSX.Element; //# sourceMappingURL=ListCreateNewDocInFolderButton.d.ts.map