import React from 'react'; import { NavPosition } from '../Nav'; /** * `AutoplayButton` component props. */ export interface AutoplayButtonProps { /** * CSS class name. */ className?: React.HTMLAttributes['className']; /** * Object of CSS properties `top`, `left`, `bottom`, and `right` used to absolutely position elements. * Aside from the former, you can also set the CSS `transform` property to help you center the element. * @default * { * bottom: '0', * left: '0' * } */ position?: NavPosition; /** * Inline CSS styling. */ style?: React.CSSProperties; } export declare function AutoplayButton(props: AutoplayButtonProps): JSX.Element; //# sourceMappingURL=index.d.ts.map