import { IBearCarouselProps, IBreakpointSetting, IBreakpointSettingActual, IPropsBreakpoints, GlobalWindow } from '../../types'; import { ISetting } from '../../types'; /** * 取得設定 * @param props */ export declare function getSetting(props: IBearCarouselProps): ISetting; /** * 取得響應式設定 * @param options */ export declare function getMediaSetting(options?: { defaultBreakpoint?: IBreakpointSetting; breakpoints?: IPropsBreakpoints; win?: GlobalWindow; }): IBreakpointSettingActual; /** * 取得高度設定 * @param height */ export declare function getHeight(height: IBreakpointSetting['height']): { height: string; aspectRatio?: undefined; } | { aspectRatio: string; height: string; } | undefined;