export interface LarvaConfig { /** * When it's set to `false`, disables all animation and transition across the app. * Can be useful to make ionic smoother in slow devices, when animations can't run smoothly. */ animated?: boolean; /** * Defaults to `true`. */ swipeBack?: boolean; /** */ formatDateTime?: string; /** */ formatLongDate?: string; /** */ formatShortDate?: string; /** */ formatLongTime?: string; /** */ formatShortTime?: string; /** */ persistConfig?: boolean; } export declare const setupConfig: (config: LarvaConfig) => any;