import React from 'react'; import { MenuNavProps } from '../MenuNav'; /** * `ButtonsNav` component props. */ export interface ButtonsNavProps extends MenuNavProps { /** * CSS background color property for the nav buttons. */ backgroundColor?: React.CSSProperties['backgroundColor']; /** * Aligns the nav items to the center, top, or bottom of its container working exactly as how the CSS flex-box `align-items` property works. */ alignItems?: React.CSSProperties['alignItems']; } export declare function ButtonsNav(props: ButtonsNavProps): JSX.Element | null; //# sourceMappingURL=index.d.ts.map