export type ActionListHeaderKind = 'header' | 'groupHeader'; export declare const action = "action"; export declare const destructive = "destructive"; export declare const flyout = "flyout"; export declare const singleCheckMark = "singleCheckMark"; export declare const multiCheckMark = "multiCheckMark"; export declare const checkbox = "checkbox"; export declare const radio = "radio"; export declare const singleSwitch = "switch"; declare const choiceItemKinds: readonly ["singleCheckMark", "multiCheckMark", "checkbox", "radio", "switch"]; export declare const actionListItemKinds: readonly ["action", "destructive", "flyout", "singleCheckMark", "multiCheckMark", "checkbox", "radio", "switch"]; export type ActionListItemKind = typeof actionListItemKinds[number]; type ActionListItemChoiceKind = typeof choiceItemKinds[number]; export declare const isChoiceKind: (kind: ActionListItemKind) => kind is ActionListItemChoiceKind; export {};