import type * as React from 'react'; import type { ViewStyle } from 'react-native'; import type { IViewProps } from '@fluentui-react-native/adapters'; import type { IBackgroundColorTokens } from '@fluentui-react-native/tokens'; export declare const menuDividerName = "MenuDivider"; export declare const MenuDividerInsetSizes: readonly [0, 16, 56, 68, 72, 108]; export type MenuDividerInsetSize = (typeof MenuDividerInsetSizes)[number]; export type MenuDividerTokens = IBackgroundColorTokens & { height?: number; margin?: number; marginVertical?: number; width?: ViewStyle['width']; insetSize?: MenuDividerInsetSize; }; export type MenuDividerProps = IViewProps & { insetSize?: MenuDividerInsetSize; }; export interface MenuDividerSlotProps { root: React.PropsWithRef; } export interface MenuDividerType { props: MenuDividerProps; tokens: MenuDividerTokens; slotProps: MenuDividerSlotProps; } //# sourceMappingURL=MenuDivider.types.d.ts.map