import { ComponentProps, FC } from 'react'; import { Alignment } from './types/alignment'; type Props = { addons?: boolean; alignment?: Alignment; }; export declare const Buttons: FC, keyof Props> & Props>; export {};