import React from 'react'; import { AccessibilityProps } from './modules/Accessibility'; import { AnimationsProps } from './modules/Animations'; import { AutoplayProps } from './modules/Autoplay'; import { ControllerProps } from './modules/Controller'; import { ManagerProps } from './modules/Manager'; import { SettingsProps } from './modules/Settings'; /** * `HeroSlider` props. */ export interface HeroSliderProps { /** * Slider className. */ className?: React.HTMLProps['className']; /** * CSS property. Defines the width of the slider. * @default '100%' */ width?: React.CSSProperties['width']; /** * CSS property. Defines the height of the slider. * @default '100vh' */ height?: React.CSSProperties['height']; /** * Inline CSS styling. */ style?: Omit; manager?: ManagerProps; settings?: SettingsProps; controller?: ControllerProps; accessibility?: AccessibilityProps; animations?: AnimationsProps; autoplay?: AutoplayProps; } export default function HeroSlider(props: React.PropsWithChildren): JSX.Element; //# sourceMappingURL=HeroSlider.d.ts.map