import { FlattenSimpleInterpolation } from "styled-components"; export declare const convertDigit: (epoch: number, digit: number) => number; export declare const timeFormatFromUTCEpoch: (epoch: string | number | null, formatType: number) => string; declare type Margin = { margin?: string; marginTop?: number; marginBottom?: number; marginLeft?: number; marginRight?: number; }; export declare const margin: ({ margin, marginTop, marginBottom, marginLeft, marginRight, }: Margin) => FlattenSimpleInterpolation | string | undefined; declare type Padding = { padding?: string; paddingTop?: number; paddingBottom?: number; paddingLeft?: number; paddingRight?: number; }; export declare const padding: ({ padding, paddingTop, paddingBottom, paddingLeft, paddingRight, }: Padding) => FlattenSimpleInterpolation | string | undefined; interface props { target: HTMLElement | HTMLElement[] | null; toggle: boolean; close: () => void; } export declare const ClickOutsideEffect: ({ target, toggle, close }: props) => void; export {};