import { ComponentProps, FunctionComponent } from 'react';
import { Button } from './Button';
interface Props extends ComponentProps<typeof Button> {
    icon: 'ArrowDefaultLeft' | 'ArrowDefaultRight' | 'ArrowTailLeft' | 'ArrowTailRight';
}
export declare const ArrowButton: FunctionComponent<Props>;
export {};
