export type ScrollContainOptionType = '' | 'trimSnaps' | 'keepSnaps';
export type ScrollContainType = {
    snapsContained: number[];
};
export declare function ScrollContain(viewSize: number, contentSize: number, snapsAligned: number[], containScroll: ScrollContainOptionType): ScrollContainType;
