import { type DrawerAlignmentXType, type DrawerPanelProps } from '../../types'; export interface UseDrawerStylesProps extends DrawerPanelProps { drawerAlignmentX?: DrawerAlignmentXType; isOpen?: boolean; } export interface UseDrawerStylesReturn { classProps: { root: string; panel: string; content: string; closeButton: string; }; } export declare const useDrawerStyleProps: (props?: UseDrawerStylesProps) => UseDrawerStylesReturn;