import React from 'react'; import { EmptyStateBaseProps } from './EmptyStateBase'; import { PremiumButtonProps } from './PremiumButton'; export interface CollectionPremiumEmptyStateProps extends Omit, 'cta'> { /** * Configures the default call to action button.\ * `onClick`: Adds a callback for when the button is clicked.
* `text`: Text of the button. * To render the default upgrade button, you must provide the `onClick` callback. * @external */ upgradeCta: PremiumButtonProps; } declare function _CollectionPremiumEmptyState(props: CollectionPremiumEmptyStateProps): React.JSX.Element; export declare const CollectionPremiumEmptyState: typeof _CollectionPremiumEmptyState & { displayName: string; }; export {}; //# sourceMappingURL=CollectionPremiumEmptyState.d.ts.map