import { ComputedQuery } from '@wix/bex-core'; import { ComponentType, ReactNode } from 'react'; import { EmptyStateProps } from '@wix/design-system'; export interface CommonEmptyStateProps extends Partial { component?: ComponentType; children?: ReactNode; /** * Text for "Reset Filters" button */ actionButtonText?: string; /** * A "Reset filters" button click callback */ onResetFiltersButtonClick?(params: { query: ComputedQuery; }): unknown; } declare function _CommonEmptyState(props: CommonEmptyStateProps): JSX.Element; /** * @deprecated Use instead: `import { CollectionEmptyState } from '@wix/cairo';` */ export declare const CommonEmptyState: typeof _CommonEmptyState & { displayName: string; }; export {}; //# sourceMappingURL=CommonEmptyState.d.ts.map