import type { SortValue } from '@wix/headless-components/react'; /** * Props for CmsCollectionSort headless component */ export interface CmsCollectionSortProps { /** Render prop function that receives sort controls */ children: (props: CmsCollectionSortRenderProps) => React.ReactNode; } /** * Render props for CmsCollectionSort component */ export interface CmsCollectionSortRenderProps { /** Current sort value */ currentSort: SortValue; /** Function to update the sort */ setSort: (sort: SortValue) => void; } /** * Core headless component for CMS collection sorting */ export declare function CmsCollectionSort(props: CmsCollectionSortProps): import("react").ReactNode;