import React from 'react'; interface ComposeDropdownContentProps { filter: React.ReactNode; customDropdownHeader: React.ReactNode; customDropdownFooter: React.ReactNode; statusFooter: React.ReactNode; dropdownHeaderClass: string; dropdownFooterClass: string; } /** * Builds the dropdown `header` and `footer` nodes shared by Select and Multiselect. When no custom header or * custom footer is provided, the header is just the filter and the footer is the built-in sticky status, so the * output is identical to the component's original behavior. */ export declare function composeDropdownContent({ filter, customDropdownHeader, customDropdownFooter, statusFooter, dropdownHeaderClass, dropdownFooterClass }: ComposeDropdownContentProps): { header: React.ReactNode; footer: React.ReactNode; }; export {};