import { CSSObject } from '@xstyled/styled-components';
import { ThemeValues } from '../../theme';
export type ThemeSwipers = {
    navigation: {
        bullet: {
            active: CSSObject;
            default: CSSObject;
        };
    };
};
export declare const getSwipers: (theme: ThemeValues) => ThemeSwipers;
