export interface I_EnableMenuProps {
    menuButtonIcon?: string;
    menuButtonText?: string;
    menuButtonLabel?: string;
    menuButtonColor?: string;
    menuButtonTextColor?: string;
    headerText?: string;
    children: React.ReactNode;
    primaryColor?: string;
    secondaryColor?: string;
    primaryButtonText?: string;
    secondaryButtonText?: string;
    disableMenuButton?: boolean;
    disablePrimaryButton?: boolean;
    disableSecondaryButton?: boolean;
    isActive?: boolean;
    renderMenuButtonAsDropdown?: boolean;
    onPrimaryButtonClick?: VoidFunction;
    onSecondaryButtonClick?: VoidFunction;
    menuListWidth?: string;
    footerButtonsWidth?: string;
}
//# sourceMappingURL=index.d.ts.map