import { QuarkElement } from "quarkc"; export interface Props { offsettop?: number; zindex?: number; } declare class QuarkSticky extends QuarkElement { offsettop: string; zindex: string; containerRef: any; stickyRef: any; calcSizeFuncRef: any; componentDidMount(): void; componentWillUnmount(): void; scrollEvent: () => void; getCalcEvent: (offsettop: any) => (value: string) => number; render(): any; } export default QuarkSticky;