///
import { type CommonProps } from '../../../../lib/seam/components/common-props.js';
export interface SupportedDeviceTableProps extends CommonProps {
disableFilter?: boolean;
manufacturers?: string[] | null;
excludedManufacturers?: string[];
includeIf?: string[] | null;
excludeIf?: string[];
}
export declare const NestedSupportedDeviceTable: (props: Partial & JSX.IntrinsicAttributes & import("../../../../lib/seam/components/common-props.js").RequiredCommonProps) => JSX.Element | null;
export declare function SupportedDeviceTable({ disableFilter, manufacturers, excludedManufacturers, includeIf, excludeIf, className, }?: SupportedDeviceTableProps): JSX.Element;