import { ReactElement } from 'react'; export type DensityOption = 'compact' | 'standard' | 'comfortable'; export interface DensitySelectorProps { onChange: (density: DensityOption) => void; value?: DensityOption; } export declare function DensitySelector({ onChange, value }: DensitySelectorProps): ReactElement; //# sourceMappingURL=DensitySelector.d.ts.map