import { type AlignmentXDictionaryType, type AlignmentYDictionaryType } from '../../types'; export interface ModalStylesProps { footerAlignment?: AlignmentXDictionaryType; isDockedOnMobile?: boolean; isExpandedOnMobile?: boolean; isOpen?: boolean; isScrollable?: boolean; modalAlignment?: AlignmentYDictionaryType; } export interface ModalStylesReturn { classProps: { root: string; dialog: string; title: string; header: string; body: string; footer: { root: string; description: string; actions: string; }; }; } export declare function useModalStyleProps({ footerAlignment, isDockedOnMobile, isExpandedOnMobile, isOpen, isScrollable, modalAlignment, }?: ModalStylesProps): ModalStylesReturn;