import { type CSSProperties, type ComputedRef } from 'vue';
import type { SwitchPropsType } from '../../dkswitch/src/props';
import type { ClassListName } from '../../_interface';
interface GetSwitchReturnsType {
    classList: ComputedRef<ClassListName>;
    styleList: CSSProperties;
}
export declare const getSwitch: (props: SwitchPropsType) => GetSwitchReturnsType;
export {};
