export declare type Alignement = 'h' | 'v';
export declare type AddOnMode = 'none' | 'left' | 'right';
export declare type Width = 'auto' | 'full';
export interface UpButtonGroupProps {
    gutter?: number;
    align?: Alignement;
    isAddOn?: AddOnMode;
    width?: Width;
}
