/// import { type DeviceModelFilters } from '../../../../lib/seam/components/SupportedDeviceTable/use-filtered-device-models.js'; interface SupportedDeviceContentProps { filterValue: string; resetFilterValue: () => void; filters: DeviceModelFilters; manufacturers: string[] | null; excludedManufacturers: string[]; includeIf: string[] | null; excludeIf: string[]; } export declare function SupportedDeviceContent({ resetFilterValue, filterValue, filters, manufacturers, excludedManufacturers, includeIf, excludeIf, }: SupportedDeviceContentProps): JSX.Element | null; export {};