import { StaticAppearance } from '@viasat/beam-shared/utils/constants'; type DisableableStates = 'enabled' | 'hover' | 'active' | 'focus-visible-within' | 'disabled'; type EnableableStates = 'focus-within'; export interface StateLayerProps { appearance?: StaticAppearance; className?: string; without?: Array | DisableableStates; with?: Array | EnableableStates; } export declare function StateLayer({ className: _className, without, with: _with, }: StateLayerProps): import("react/jsx-runtime").JSX.Element; export default StateLayer;