import { defaultTokens } from "@kiwicom/orbit-design-tokens";
export interface Theme {
    readonly orbit: typeof defaultTokens;
    readonly transitions?: boolean;
    readonly lockScrolling?: boolean;
    readonly lockScrollingBarGap?: boolean;
    readonly rtl?: boolean;
}
declare const defaultTheme: Theme;
export interface ThemeProps {
    readonly theme: Theme;
}
export default defaultTheme;
