import type { SwitchState, SwitchProps } from './Switch.types'; /** * A function which determines if a set of styles should be applied to the component given the current state and props of the switch. * * @param layer The name of the state that is being checked for * @param state The current state of the switch * @param userProps The props that were passed into the switch * @returns Whether the styles that are assigned to the layer should be applied to the switch */ export declare const switchLookup: (layer: string, state: SwitchState, userProps: SwitchProps) => boolean; export declare const Switch: import("@fluentui-react-native/framework").ComposableComponent; //# sourceMappingURL=Switch.d.ts.map